home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Ebooks / Thinking in Java / c12 / CopyConstructor.java < prev    next >
Encoding:
Java Source  |  2000-05-25  |  5.3 KB  |  173 lines

  1. //: CopyConstructor.java
  2. //////////////////////////////////////////////////
  3. // Copyright (c) Bruce Eckel, 1998
  4. // Source code file from the book "Thinking in Java"
  5. // All rights reserved EXCEPT as allowed by the
  6. // following statements: You can freely use this file
  7. // for your own work (personal or commercial),
  8. // including modifications and distribution in
  9. // executable form only. Permission is granted to use
  10. // this file in classroom situations, including its
  11. // use in presentation materials, as long as the book
  12. // "Thinking in Java" is cited as the source. 
  13. // Except in classroom situations, you cannot copy
  14. // and distribute this code; instead, the sole
  15. // distribution point is http://www.BruceEckel.com 
  16. // (and official mirror sites) where it is
  17. // freely available. You cannot remove this
  18. // copyright and notice. You cannot distribute
  19. // modified versions of the source code in this
  20. // package. You cannot use this file in printed
  21. // media without the express permission of the
  22. // author. Bruce Eckel makes no representation about
  23. // the suitability of this software for any purpose.
  24. // It is provided "as is" without express or implied
  25. // warranty of any kind, including any implied
  26. // warranty of merchantability, fitness for a
  27. // particular purpose or non-infringement. The entire
  28. // risk as to the quality and performance of the
  29. // software is with you. Bruce Eckel and the
  30. // publisher shall not be liable for any damages
  31. // suffered by you or any third party as a result of
  32. // using or distributing software. In no event will
  33. // Bruce Eckel or the publisher be liable for any
  34. // lost revenue, profit, or data, or for direct,
  35. // indirect, special, consequential, incidental, or
  36. // punitive damages, however caused and regardless of
  37. // the theory of liability, arising out of the use of
  38. // or inability to use software, even if Bruce Eckel
  39. // and the publisher have been advised of the
  40. // possibility of such damages. Should the software
  41. // prove defective, you assume the cost of all
  42. // necessary servicing, repair, or correction. If you
  43. // think you've found an error, please email all
  44. // modified files with clearly commented changes to:
  45. // Bruce@EckelObjects.com. (Please use the same
  46. // address for non-code errors found in the book.)
  47. /////////////////////////////////////////////////
  48.  
  49. // A constructor for copying an object
  50. // of the same type, as an attempt to create
  51. // a local copy.
  52.  
  53. class FruitQualities {
  54.   private int weight;
  55.   private int color;
  56.   private int firmness;
  57.   private int ripeness;
  58.   private int smell;
  59.   // etc.
  60.   FruitQualities() { // Default constructor
  61.     // do something meaningful...
  62.   }
  63.   // Other constructors:
  64.   // ...
  65.   // Copy constructor:
  66.   FruitQualities(FruitQualities f) {
  67.     weight = f.weight;
  68.     color = f.color;
  69.     firmness = f.firmness;
  70.     ripeness = f.ripeness;
  71.     smell = f.smell;
  72.     // etc.
  73.   }
  74. }
  75.  
  76. class Seed {
  77.   // Members...
  78.   Seed() { /* Default constructor */ }
  79.   Seed(Seed s) { /* Copy constructor */ }
  80. }
  81.  
  82. class Fruit {
  83.   private FruitQualities fq;
  84.   private int seeds;
  85.   private Seed[] s;
  86.   Fruit(FruitQualities q, int seedCount) { 
  87.     fq = q;
  88.     seeds = seedCount;
  89.     s = new Seed[seeds];
  90.     for(int i = 0; i < seeds; i++)
  91.       s[i] = new Seed();
  92.   }
  93.   // Other constructors:
  94.   // ...
  95.   // Copy constructor:
  96.   Fruit(Fruit f) {
  97.     fq = new FruitQualities(f.fq);
  98.     seeds = f.seeds;
  99.     // Call all Seed copy-constructors:
  100.     for(int i = 0; i < seeds; i++)
  101.       s[i] = new Seed(f.s[i]);
  102.     // Other copy-construction activities...
  103.   }
  104.   // To allow derived constructors (or other 
  105.   // methods) to put in different qualities:
  106.   protected void addQualities(FruitQualities q) {
  107.     fq = q;
  108.   }
  109.   protected FruitQualities getQualities() {
  110.     return fq;
  111.   }
  112. }
  113.  
  114. class Tomato extends Fruit {
  115.   Tomato() {
  116.     super(new FruitQualities(), 100);
  117.   }
  118.   Tomato(Tomato t) { // Copy-constructor
  119.     super(t); // Upcast for base copy-constructor
  120.     // Other copy-construction activities...
  121.   }
  122. }
  123.  
  124. class ZebraQualities extends FruitQualities {
  125.   private int stripedness;
  126.   ZebraQualities() { // Default constructor
  127.     // do something meaningful...
  128.   }
  129.   ZebraQualities(ZebraQualities z) {
  130.     super(z);
  131.     stripedness = z.stripedness;
  132.   }
  133. }
  134.  
  135. class GreenZebra extends Tomato {
  136.   GreenZebra() {
  137.     addQualities(new ZebraQualities());
  138.   }
  139.   GreenZebra(GreenZebra g) {
  140.     super(g); // Calls Tomato(Tomato)
  141.     // Restore the right qualities:
  142.     addQualities(new ZebraQualities());
  143.   }
  144.   void evaluate() {
  145.     ZebraQualities zq = 
  146.       (ZebraQualities)getQualities();
  147.     // Do something with the qualities
  148.     // ...
  149.   }
  150. }
  151.  
  152. public class CopyConstructor {
  153.   public static void ripen(Tomato t) {
  154.     // Use the "copy constructor":
  155.     t = new Tomato(t); 
  156.     System.out.println("In ripen, t is a " +
  157.       t.getClass().getName());
  158.   }
  159.   public static void slice(Fruit f) {
  160.     f = new Fruit(f); // Hmmm... will this work?
  161.     System.out.println("In slice, f is a " +
  162.       f.getClass().getName());
  163.   }
  164.   public static void main(String[] args) {
  165.     Tomato tomato = new Tomato();
  166.     ripen(tomato); // OK
  167.     slice(tomato); // OOPS!
  168.     GreenZebra g = new GreenZebra();
  169.     ripen(g); // OOPS!
  170.     slice(g); // OOPS!
  171.     g.evaluate();
  172.   }
  173. } ///:~